home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Python 1.3 / source code / Misc / Makefile < prev    next >
Encoding:
Makefile  |  1995-12-17  |  242 b   |  11 lines  |  [TEXT/R*ch]

  1. all:
  2.         @echo Nothing to make in this directory.
  3.  
  4. clean:
  5.         find . '(' -name '*.pyc' -o -name core -o -name '*~' \
  6.             -o -name '[@,#]*' -o -name '*.old' \
  7.             -o -name '*.orig' -o -name '*.rej' ')' \
  8.             -print -exec rm -f {} ';'
  9.  
  10. clobber:    clean
  11.